home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / HOWARD.ZIP / MAKEIT.BAT < prev    next >
DOS Batch File  |  1997-04-13  |  1KB  |  11 lines

  1. @echo off
  2. echo User: Use Visual C++ 5.0 and set up the MFC command line build environment
  3. md Release
  4. cl /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NRelease" /D "_WINDOWS" /D "STRICT" /Fo"Release\\" /Fd"Release\\" /FD /c IdleDemo.cpp
  5. cl /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NRelease" /D "_WINDOWS" /D "STRICT" /Fo"Release\\" /Fd"Release\\" /FD /c IdleMain.cpp
  6. cl /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NRelease" /D "_WINDOWS" /D "STRICT" /Fo"Release\\" /Fd"Release\\" /FD /c IdleDlg.cpp
  7. cl /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NRelease" /D "_WINDOWS" /D "STRICT" /Fo"Release\\" /Fd"Release\\" /FD /c DemoDlg.cpp
  8. cl /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NRelease" /D "_WINDOWS" /D "STRICT" /Fo"Release\\" /Fd"Release\\" /FD /c StdAfx.cpp
  9. rc /l 0x409 /fo"Release\IdleDemo.res" /d "NRelease" IdleDemo.rc
  10. link /nologo /subsystem:windows /incremental:no /machine:I386 /out:"Release\IdleDemo.exe" Release\IdleDemo.obj Release\IdleMain.obj Release\IdleDlg.obj Release\DemoDlg.obj Release\StdAfx.obj Release\IdleDemo.res
  11. echo User: Run IdleDemo.exe in Release